Nevron Open Vision Documentation
Nevron.Nov.UI Namespace / NListBox Class / FillFromArray Method / FillFromArray<TValue>(TValue[]) Method
The type of the array values.
The values to fill the list box with.


In This Topic
    FillFromArray<TValue>(TValue[]) Method
    In This Topic
    Fills the list box with the values of the specified array. Assigns the corresponding array value to the Tag property of each list box item.
    Syntax
    'Declaration
     
    
    Public Overloads Sub FillFromArray(Of TValue)( _
       ByVal values() As TValue _
    ) 
    'Usage
     
    
    Dim instance As NListBox
    Dim values() As TValue
     
    instance.FillFromArray(Of TValue)(values)
    public void FillFromArray<TValue>( 
       TValue[] values
    )

    Parameters

    values
    The values to fill the list box with.

    Type Parameters

    TValue
    The type of the array values.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 7, Windows Server 2019, Windows Server 2016, Windows Server 2012 R2, Windows Server 2012, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later)

    See Also